home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / LOWMEM.TXT < prev    next >
Text File  |  1997-04-11  |  5KB  |  96 lines

  1.  
  2. Additional forward (warning/disclaimer) added Sat Apr 11 00:19:57 CDT 1998:
  3.  
  4. Well, I've been told that many (most?) machines with 4 megabytes of RAM
  5. choke trying to boot the smallest Slackware bootdisk (bare.i).  If that's
  6. the case, it's probably time for installation to machines with less than
  7. 8 megabytes to become officially unsupported.  It *might* still be possible,
  8. though, and I'm not against people continuing to try.  That's why I'll
  9. continue to include this file of hints, as well as the old, obsolete 1.44
  10. megabyte rootdisk images (now in rootdsks/obsolete/).  Just don't ask me
  11. how to install on your 4 megabyte machine, because I'll tell you:  "OK, well
  12. first you need to get some more SIMMs..."
  13.  
  14. ----------------------------------------------------------------------------
  15.  
  16. Installation can be tricky on a machine with 4 megabytes of RAM or
  17. less. Here are a few tricks that can be helpful if you run into
  18. problems. (Symptoms might include: system hangs while booting the bootdisk;
  19. root password required on the rootdisk; inability to run "fdisk" or
  20. "mkswap"; and many more, I'm sure...)
  21.  
  22. First, you'll need to use a 3.5" floppy for the rootdisk, and you *must*
  23. uncompress the rootdisk before writing it out.  This is since it will be 
  24. used directly from the floppy drive instead of loaded into a ramdisk.
  25.  
  26. 1. If you have a second 3.5" floppy drive, great -- you'll want to use that
  27. for the rootdisk. If not, you'll have to make due with the rootdisk in your
  28. boot drive. With the rootdisk in the boot drive you won't be able to
  29. install from floppy disks or make a bootdisk at the end of the installation
  30. process, since the disk will be "mounted" in the boot drive and cannot be
  31. removed (no matter what the screen tells you) until the machine is
  32. rebooted. Make a rootdisk using RAWRITE.EXE for the floppy drive you
  33. selected.
  34.  
  35. 2. Unzip lodlin16.zip (look in /kernels) in a directory on your DOS
  36. partition.
  37.  
  38. 3. Select an appropriate kernel from a subdirectory under /kernels. The
  39. /bootdsks.144/WHICH.ONE document might be helpful in selecting the proper
  40. one for your hardware. Copy it into the directory where you put loadlin.
  41.  
  42. 4. Put the rootdisk (NOT write protected) into the floppy drive, and use
  43. this command to boot it:
  44.  
  45.    loadlin scsi.s root=/dev/fd0 rw ramdisk=0
  46.            ^^^^^^      ^^^^^^^^
  47.            ||||||      This should be the drive you put the disk in.
  48.            This is the name of the kernel you selected.
  49.  
  50.  
  51. Then, install Linux. If you're using the boot floppy drive for the
  52. rootdisk, you will not be able to install from floppy disks. DON'T take the
  53. rootdisk out of the floppy drive for any reason during the installation!
  54. Also, since scratch files may be written to the rootdisk, you'll want to
  55. start with a fresh copy if you need to start over for some reason.
  56.  
  57. NOTE:  Installation can take a lot of swap space (especially with only 4 MB of
  58. RAM), so be sure to set some up and activate it before starting "setup".  In
  59. particular, the mke2fs utility used to format Linux partitions uses quite a
  60. bit of memory.  If you've got the drive space available, 20 to 32MB of swap will
  61. help insure a smooth installation.
  62.  
  63. Once installed, you'll need to have a way to start your new system. If you
  64. were lucky enough to have a second floppy drive to use for your rootdisk,
  65. then you'll be able to make a bootdisk at the end of the installation
  66. process. This is highly recommended. If your boot drive is occupied by the
  67. rootdisk, then you've got two options: Loadlin (a method of booting from
  68. DOS) or LILO. And, if you're using the UMSDOS filesystem then Loadlin is
  69. your only choice.
  70.  
  71. To boot the system with loadlin, you'll use a command similar to the one
  72. you used to start the rootdisk, but you'll replace /dev/fd0 or /dev/fd1 with 
  73. the name of the device you're using for your root Linux partition, like this:
  74.  
  75.    loadlin scsi root=/dev/hda2 rw ramdisk=0
  76.  
  77. If you're not using UMSDOS, you might want to boot the system in read-only
  78. mode so that the drives can be checked before being remounted in read-write
  79. mode.  To do that, use "ro" instead of "rw":
  80.  
  81.    loadlin scsi root=/dev/hda2 ro ramdisk=0
  82.  
  83. Once your machine is up and running, you'll probably need to add additional
  84. driver support if you have extra hardware (such as an ethernet card) that's 
  85. not supported by the kernel you've used to install.  You can do this one of
  86. two ways:
  87.  
  88.     1)   Recompile your kernel to include any additional support needed.
  89. or
  90.     2)   Load any extra kernel drivers you need from kernel modules.  To do
  91.          this, edit your /etc/rc.d/rc.modules file.  You can think of this
  92.          file as sort of the Linux equivalent of DOS's CONFIG.SYS file -- it
  93.          contains examples for all of the most commonly used modules.  
  94.  
  95. Pat
  96.